2c304301523f12b6b3cd5c5e3de6ff5a8fda70b2,modules/analytics-objects/src/test/java/com/intuit/wasabi/analyticsobjects/wrapper/ExperimentDetailTest.java,ExperimentDetailTest,testBuckets,#,108
Before Change
List<Bucket> buckets = new ArrayList<>();
Bucket bucketA = Bucket.newInstance(expId, labelA)
.withAllocationPercent(0.8).withControl(true).build();
Bucket bucketB = Bucket.newInstance(expId, labelB)
.withAllocationPercent(0.1).withControl(false).build();
Bucket bucketC = Bucket.newInstance(expId, labelC)
After Change
List<Bucket> buckets = new ArrayList<>();
Bucket bucketA = Bucket.newInstance(expId, labelA)
.withAllocationPercent(0.8).withControl(true).withDescription("bucketA").build();
Bucket bucketB = Bucket.newInstance(expId, labelB)
.withAllocationPercent(0.1).withControl(false).withDescription("bucketB").build();
Bucket bucketC = Bucket.newInstance(expId, labelC)